home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Cl… (Business) 1997 November / Software of the Month Club - Business Shareware (Volume 243) (November 1997).iso / dos / biz / Makename / EXAMPLE1.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-09-11  |  247 b   |  14 lines

  1. @ECHO OFF
  2. ECHO This is an example program -- see the file MAKENAME.DOC for details
  3. ECHO Press Ctrl-C to quit
  4. PAUSE
  5. CLS
  6.  
  7. :AGAIN
  8. MAKENAME XYZ
  9. CALL SETNAME.BAT
  10. ECHO Variable XYZ is set to %XYZ%
  11. ECHO Press Ctrl-C to quit
  12. PAUSE
  13. GOTO AGAIN
  14.